home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / t_os / gpen32k / source.exe / LIB / OSRC / OVIEW.C < prev    next >
C/C++ Source or Header  |  1993-03-29  |  225b  |  16 lines

  1.  
  2. #include    <EGB.H>
  3.  
  4. extern char work[];
  5.  
  6. void view( int x1, int y1, int x2, int y2 )
  7. {
  8.     char pa[64];
  9.     WORD(pa    ) = x1;
  10.     WORD(pa + 2) = y1;
  11.     WORD(pa + 4) = x2;
  12.     WORD(pa + 6) = y2;
  13.     EGB_viewport( work, pa );
  14. }
  15.  
  16.